2007-06-15 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkbuildable.c:
+ * gtk/gtkbuilder.c: Documentation fixes
+
* gtk/gtktreeview.c: Fix up cross-references in docs.
* gtk/Makefile.am: Don't install gtkbuilderprivate.h
* gtk_buildable_get_name:
* @buildable: a #GtkBuildable
*
- * Returns: the buildable name, the name which was set in
- * the <link linkend="BUILDER-UI">GtkBuilder UI definition</link> used to
- * construct the @buildable.
+ *
+ * Returns the buildable name. #GtkBuilder sets the name based on the
+ * the <link linkend="BUILDER-UI">GtkBuilder UI definition</link> used
+ * to construct the @buildable.
*
* #GtkWidget implements this to map the buildable name to the widget name
*
+ * Returns: the name set with gtk_buildable_set_name()
+ *
* Since: 2.12
**/
const gchar *
*
* Construct a child of @buildable with the name @name.
*
- * #GtkUIManager implements this to reference to a widget created in a <ui> tag
- * which is outside of the normal <link linkend="BUILDER-UI">GtkBuilder UI definition</link>
- * object hierarchy.
+ * #GtkUIManager implements this to reference to a widget created in a
+ * <ui> tag which is outside of the normal
+ * <link linkend="BUILDER-UI">GtkBuilder UI definition</link>
+ * hierarchy.
+ *
+ * Returns: the child with name @name
*
* Since: 2.12
**/
* @builder: a #GtkBuilder
* @childname: name of child
*
- * Get the internal child called @child of the @buildable object.
+ * Get the internal child called @childname of the @buildable object.
*
- * Return: the internal child of the buildable object
+ * Returns: the internal child of the buildable object
*
* Since: 2.12
**/
* @builder: a #GtkBuilder
* @name: name of object to get
*
- * Return value: GObject or %NULL if it could not be found in the object tree.
+ * Gets the object named @name.
+ *
+ * Return value: the object named @name or %NULL if it could not be
+ * found in the object tree
*
* Since: 2.12
**/
* gtk_builder_get_objects:
* @builder: a #GtkBuilder
*
+ * Gets all objects that have been constructed by @builder.
+ *
* Return value: a newly-allocated #GSList containing all the objects
- * constructed by GtkBuilder instance.
+ * constructed by the #GtkBuilder instance
*
* Since: 2.12
**/
* gtk_builder_get_translation_domain:
* @builder: a #GtkBuilder
*
- * Return value : the translation domain. This string is owned
+ * Gets the translation domain.
+ *
+ * Return value: the translation domain. This string is owned
* by the builder object and must not be modified or freed.
*
* Since: 2.12
/**
* gtk_builder_get_type_from_name:
* @builder: a #GtkBuilder
- * @typename: Type name to lookup.
+ * @typename: Type name to lookup
+ *
+ * This method is used to lookup a type. It can be implemented in a
+ * subclass to override the #GType of an object created by the builder.
*
- * This method is used to lookup a type. It can be implemented in a subclass to
- * override the #GType of an object created by the builder.
+ * Returns: the #GType found for @typename or #G_TYPE_INVALID if no
+ * type was found
*
* Since 2.12
*/